home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / ABOUT.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-23  |  810 b   |  30 lines

  1. #ifndef ABOUT_HPP
  2. #define ABOUT_HPP
  3.  
  4. #include <iframe.hpp>                   //IFrameWindow Class (Parent)
  5. #include <icmdhdr.hpp>                  //ICommandHandler (Parent)
  6.  
  7. #include "bogwin.hpp"
  8.  
  9. //**************************************************************************
  10. // Class:   AboutDialog                    
  11. //                                         
  12. // Purpose: Dialog window for the About Box
  13. //**************************************************************************
  14. class AboutDialog : public IFrameWindow, public ICommandHandler
  15. {
  16. public:
  17.   AboutDialog (IWindow * ownerWnd, unsigned long rid, TBogWindow* pbwindow) ;
  18.   ~AboutDialog();
  19.  
  20. protected:
  21.   virtual Boolean
  22.   command(ICommandEvent& cmdevt);     //Process the dialog command events
  23.  
  24. private:
  25. };
  26.  
  27. #endif
  28.  
  29.  
  30.